home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Scene Storm
/
Scene Storm - Volume 1.iso
/
coding
/
tools
/
gcc
/
libnixv1_0.lha
/
gnu
/
libnix-sources.lha
/
sources
/
headers
/
pool.h
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1995-04-20
|
374 b
|
18 lines
#include <exec/lists.h>
#include <exec/memory.h>
#include <exec/execbase.h>
#include <clib/alib_protos.h>
#include <proto/exec.h>
/* our PRIVATE! memory pool structure
(_NOT_ compatible with original amiga.lib!) */
typedef struct Pool
{
struct MinList PuddleList;
struct MinList ThreshList;
ULONG MemoryFlags;
ULONG PuddleSize;
ULONG ThreshSize;
} POOL;